(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <string.h>
int unlink()
SYNOPSIS
const char * pathname

FUNCTION
Delete a file from disk.

INPUTS
pathname
Complete path to the file
RESULT
0 on success and -1 on error. In case of an error, errno is set.

NOTES
EXAMPLE
// Delete the file xyz in the current directory
unlink ("xyz");

BUGS
SEE ALSO
INTERNALS
HISTORY
06.03.1997 digulla
Two new functions